home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / pco315.arc / README.1 < prev    next >
Encoding:
Text File  |  1986-08-06  |  12.9 KB  |  270 lines

  1.  
  2.  
  3. July 2, 1986
  4. Outline! Version 3.15SW
  5.  
  6. These are some of the files on this disk:
  7.  
  8. BBO.EXE      - executable file for running Outline!
  9. README.1     - the latest notes about Outline! not included in the manual
  10. README.2     - descriptions of the utility programs included on the disk
  11. GLOBAL.COM   - utility program #1 (see README.2)
  12. CPY.COM      - utility program #2 (see README.2)
  13. DIRS.COM     - utility program #3 (see README.2)
  14. MOVE.COM     - utility program #4 (see README.2)
  15. MEM.COM      - utility program #5 (see README.2)
  16. BEEP.COM     - utility program #6 (see README.2)
  17. PUSHDIR.COM  - utility program #7 (see README.2)
  18. POPDIR.COM   - utility program #8 (see README.2)
  19. DOC.PRN      - brief documentation in printable form
  20. DOC.BBO      - brief documentation in a Outline! file
  21. EPSON.CFG    - the epson printer driver
  22. IBM.CFG      - the ibm printer driver
  23. BLANK.CFG    - a dummy printer driver that will ignore all print codes
  24. PRINTDOC.BAT - a batch file that will print DOC.PRN to LPT1
  25. PCPRINT.COM  - a program for changing printer drivers
  26. KEYSET.COM   - a program for customizing the Outline! invoke key
  27. BBOPRN$.CFG  - a printer substitution file for correctly printing graphics
  28.                characters on non-IBM printers.
  29. *.BBO        - sample outlines covering many of Outline!'s features.
  30. GOODCLK.COM  - a program to make the time display in Outline! work
  31.                correctly on some compatibles (AT&T, EPSON, and others).
  32.                To use it, just run it in your autoexec.bat file (or any
  33.                time before loading Outline!).
  34.  
  35. Last minute notes about Outline!:
  36.  
  37. A couple new features have been implemented which are not included in
  38. the manual.
  39.  
  40. 1)   NEW WAY OF SPECIFYING WHERE THE CONFIGURATION FILE IS FOR USE ON
  41.      A HARD DISK:  Instead of using the /l=<configuration file/path
  42.      name> as a command parameter option, you may put the command
  43.      SET BBO=<configuration file/path name> in your autoexec.bat
  44.      file.  Outline! will first look in the current directory for
  45.      the configuration file BBO.CFG.  If it is not found there and
  46.      there was no /l=.....  command parameter, then Outline! will
  47.      try the file/path set in the environment with the dos SET
  48.      command.  By using this feature, you can start Outline! from
  49.      anywhere on your hard disk simply by pathing to the directory
  50.      that contains BBO.EXE.  Outline! will do the rest of the work,
  51.      automatically finding its configuration files.
  52.  
  53. 2)   NEW /d COMMAND PARAMETER FOR CONTROLLING THE STARTING CURRENT
  54.      DIRECTORY IN Outline!:  The configuration file BBO.CFG
  55.      (created from the ADVANCED CONFIGURATION menu) can contain a
  56.      starting directory.  If it does, then each time Outline!
  57.      starts it will automatically start with that directory as the
  58.      current directory for outline files.  If it does not contain a
  59.      starting directory, (the entry in the ADVANCED CONFIGURATION
  60.      menu for starting directory is blank), then Outline! will use
  61.      the current DOS directory as its starting directory.  If you set
  62.      a current directory in the above menu because you keep most of
  63.      your outline files in one particular location, but sometimes you
  64.      want to start up Outline! with a different directory, then you
  65.      can log to the directory you want and type BBO.EXE /d.  The /d
  66.      will tell Outline! to ignore the starting directory set in the
  67.      configuration file and use the DOS current directory.
  68.  
  69. 3)   Although it is not mentioned in the documentation anywhere,
  70.      Outline! supports the creation of a printer substitution table
  71.      allowing you to print graphics characters on some printers.  Note:
  72.      Graphics characters will print exactly as seen on the screen on an
  73.      IBM printer.  On epson printers and most other printers, however, you
  74.      must do a little extra work to get some graphics characters to print
  75.      correctly.
  76.  
  77.      For example, if you choose bullet numbering for your outlines, an
  78.      epson printer will not correctly print the bullet.  To fix this,
  79.      create an ascii file named BBOPRN$.CFG and place the following line
  80.      in it (this file exists on the Outline! system disk):
  81.  
  82.      char(254)=143
  83.  
  84.      The bullet character on screen is 254 and the epson printer character
  85.      for a bullet is 143.  This command tells Outline! that whenever it
  86.      is about to print a character 254, print a 143 instead.  You can
  87.      place as many printer substitutions as you like.  The string to
  88.      substitute can be more than one character if desired.  For example
  89.      you could redefine the tilde character (~) to turn boldface on (for
  90.      an epson printer) by inserting the following line.
  91.  
  92.      char('~')=27,'E'
  93.  
  94.      This would substitute ESC G for every occurence of a tilde character.
  95.  
  96.      Note that there are two ways to insert a value, by placing a
  97.      character in single quotes ('D') or by entering the decimal
  98.      representation for the ascii value of the character (123).  Each
  99.      entry must be separated by a comma.  Following are some valid
  100.      entries:
  101.  
  102.      char(132)='a'
  103.      char('f')='ABC',32
  104.      char(34)=255,'abc',27,'G'
  105.  
  106.      Any line in the file that begins with a semicolon will be ignored
  107.      (useful for inserting comments).  Lines in the substitution file may
  108.      be no longer than 80 characters.  To continue a line on the next
  109.      line, end the line with a plus sign.  For example:
  110.  
  111.      char('~')='ABCEFGHIJKLMNOP',+
  112.      'QRSTUVWXYZ'
  113.  
  114.      This command would print the entire alphabet everytime the tilde
  115.      ('~') was encountered in a file.
  116.  
  117.      Outline! will look for the file BBOPRN$.CFG in the same directory
  118.      as the configuration file.  If you have not used either the
  119.      l=<filename> command parameter or the SET BBO=<filename> command to
  120.      specify where the configuration file is located, then Outline! will
  121.      just look for BBOPRN$.CFG in the current directory.
  122.  
  123.  
  124. ITEMS ADDED TO Outline! SINCE THE DOCUMENTATION RELEASE.
  125. ----------------------------------------------------------
  126.  
  127. ADDED IN VERSION 1.02:
  128.  
  129. 1)   DE-INSTALL - While using Outline! in memory resident mode, you may
  130.      deinstall it from memory by pressing Control-Backspace three times in
  131.      a row from the main editing mode.  If there were no memory resident
  132.      programs loaded after Outline!, you will recover all the memory
  133.      that Outline! was allocated.  If you load any memory resident
  134.      programs after Outline!, the memory Outline! occupied will be
  135.      freed, but it will not be available for dos to use to run other
  136.      programs in.
  137.  
  138.      Note:     ONLY USE THE DEINSTALL COMMAND AFTER INVOKING Outline!
  139.                FROM THE DOS PROMPT AND ONLY AFTER YOU HAVE SAVED ALL OF
  140.                YOUR OUTLINES.  YOU MUST BE IN THE MAIN EDITING MODE OF
  141.                Outline! FOR THE DEINSTALL TO WORK (not the opening
  142.                menu).
  143.  
  144. ADDED IN VERSION 1.03:
  145.  
  146. 1)   The "Lose Changes" prompt now looks at all open windows.  It used to
  147.      only look at changes in the current window.
  148.  
  149. 2)   With the /K command parameter option you can force Outline! to take
  150.      its keys directly from the keyboard buffer without going through
  151.      BIOS.  This allows you to bypass keyboard enhancers.
  152.  
  153.      MAIN USE:  If you have a whole bunch of keys redefined for your word
  154.      processor and you don't want those key definitions for Outline!,
  155.      you can use the /K option and the keyboard enhancer will be active in
  156.      your main program, but not when you invoke Outline!.  When you
  157.      return back to your word processor, the keyboard enhancer will
  158.      automatically be active again.  It is likely you will only find use
  159.      for this option when using Outline! in its memory resident mode.
  160.  
  161.      For those of you following the progression of versions, all
  162.      non-memory resident versions get their keys through BIOS.  For the
  163.      memory resident version, 1.00 and 1.01 got keys directly from
  164.      keyboard buffer, 1.02 got keys through BIOS and 1.03 gives you the
  165.      choice with /K (default through BIOS).
  166.  
  167. ADDED IN VERSION 1.04:
  168.  
  169. 1)   A few small changes to make 1.03 work how it was supposed to.
  170.  
  171. ADDED IN VERSION 1.05:
  172.  
  173. 1)   DELETE OUTLINE ENTRY PROMPT:  The delete outline entry command now
  174.      contains a prompt that asks you to confirm whether you really want to
  175.      delete the entire outline family.  This was added in response to
  176.      complaints that the ^D command was too dangerous.  You could delete
  177.      your whole outline with a single keystroke.  If you do not want this
  178.      prompt, then you can use the command parameter /P when first loading
  179.      Outline! and the prompt will be skipped.  Note you could also
  180.      define a macro for ^D to be ^DY (^D and then a Y to answer yes to the
  181.      delete prompt).
  182.  
  183. 2)   SNOW ON MONITORS:  The /T command parameter will fix a problem with
  184.      snow on the screen that some monitors may have.  On some IBM color
  185.      graphics adapters, you may see a small amount of snow on the left
  186.      edge of the screen.  Using the /T command parameter should eliminate
  187.      that.  The problem also occurs on some Hercules clone video cards.
  188.      If you have the IBM monochrome adapter, an EGA card, or a COMPAQ
  189.      card, you should not need this option.  Using the /T parameter has a
  190.      slight disadvantage (so you should not use it unless you need it).
  191.      With /T enabled, the on screen time and the CAPS and NUM indicators
  192.      will only be updated whenever you press a key.  Consequently, the
  193.      time and the shift status may not be correct if you have not pressed
  194.      a  key for a while.  Note:  this option is not the same as video
  195.      retrace in the ADVANCED CONFIGURATION menu.  If you see snow on the
  196.      screen, you should first make sure that this option is set to YES.
  197.      Only if that does not fix the problem should you use /T.  You may
  198.      also want to use this option if you have a Hercules clone and you see
  199.      unwanted background snow all the time.
  200.  
  201. 3)   LOW INTENSITY VIDEO:  The /I command parameter will force Outline!
  202.      to use low intensity video instead of high intensity video (in
  203.      response to users with a monochrome display).
  204.  
  205. 4)   SAME KEY INVOKE/DE-INVOKE:  When using Outline! in memory resident
  206.      mode, the same key that you use to invoke Outline! (the default is
  207.      Control-Backslash, but you can change it using KEYSET.COM) will also
  208.      exit Outline! and return you back to your other application.
  209.  
  210. 5)   CORRECT TIME ON COMPATIBLES:  A utility program called GOODCLK.COM is
  211.      now included on the disk that will allow Outline! to correctly
  212.      display the time on some compatibles.  To use it, just run it any
  213.      time before loading Outline! (preferably in your autoexec.bat
  214.      file).  It does not remain memory resident so you lose no memory by
  215.      running it.  All it does is set the BIOS time to be the same as the
  216.      DOS time.  Outline! gets its time from BIOS (because it is so much
  217.      quicker), but some compatibles with clock cards (AT&T, EPSON, ...)
  218.      set the DOS time correctly on boot up, but not the BIOS time.  You
  219.      should not need this if you have an IBM or a COMPAQ.
  220.  
  221. 6)   Pressing the ESC key after hitting the menu key ("/") will now just
  222.      cancel the menu key instead of asking you if you want to quit
  223.      Outline!.
  224.  
  225. ADDED IN VERSION 1.06:
  226.  
  227. 1)   A few small changes to make the memory resident version work with
  228.      more programs.
  229.  
  230. 2)   Bug fixes in the key re-definition part of the program.
  231.  
  232. ADDED IN VERSION 1.07:
  233.  
  234. 1)   Small bug fixes relating to hiding and unhiding text.
  235.  
  236. 2)   New shareware policy (on the opening shareware screen).
  237.  
  238. ADDED IN VERSION 1.08:
  239.  
  240. 1)   You can now set all 8 levels of numbering in the Global
  241.      Outline Style menu.  Also fixed some problems with
  242.      getting the numbering saved correctly to the BBO.CFG
  243.      file.
  244.  
  245. 2)   Fixed bug that occurs only when copying more than 255
  246.      outline elements from one window to another.
  247.  
  248. 3)   Fixed bug that can occur only on an 80286 machine (we
  249.      discovered one of the incompatibilities between the
  250.      8088 and 80286) in the following situations:
  251.  
  252.      a)   Adding text to a lower window number outline with
  253.           more than 64k of outlines above it in higher
  254.           window numbers.
  255.      b)   Copying text or outline elements from a higher
  256.           window # down to a lower window # with more than
  257.           64k of outlines in between.
  258.  
  259. ADDED IN VERSIONS 1.08A AND 1.08B: and ABOVE
  260.  
  261. 1)   Added direct support for Prokey and Superkey so that if you use the
  262.      /K command parameter option, Outline! will detect their presence
  263.      and use their internal functions for putting them to sleep while
  264.      using Outline! instead of going directly to the keyboard buffer to
  265.      try to accomplish the same thing.  This method is considerably more
  266.      reliable and is compatible with the expanded keyboard buffers that
  267.      the above products offer.  If you do not use the /K parameter,
  268.      Outline! behaves exactly as before.
  269. 
  270.